home *** CD-ROM | disk | FTP | other *** search
/ Sounds Terrific 2 / Sounds Terrific II (1996)(Weird Science)(Disc 1 of 2)[Amiga-PC].iso / archives / amiga / amichord.lha / AmiChord / src / getopt.c < prev    next >
C/C++ Source or Header  |  1995-04-09  |  3KB  |  83 lines

  1. /*
  2. **      @(#)getopt.c    2.2 (smail) 1/26/87
  3. */
  4.  
  5. /*
  6.  * Here's something you've all been waiting for:  the AT&T public domain
  7.  * source for getopt(3).  It is the code which was given out at the 1985
  8.  * UNIFORUM conference in Dallas.  I obtained it by electronic mail
  9.  * directly from AT&T.  The people there assure me that it is indeed
  10.  * in the public domain.
  11.  * 
  12.  * There is no manual page.  That is because the one they gave out at
  13.  * UNIFORUM was slightly different from the current System V Release 2
  14.  * manual page.  The difference apparently involved a note about the
  15.  * famous rules 5 and 6, recommending using white space between an option
  16.  * and its first argument, and not grouping options that have arguments.
  17.  * Getopt itself is currently lenient about both of these things White
  18.  * space is allowed, but not mandatory, and the last option in a group can
  19.  * have an argument.  That particular version of the man page evidently
  20.  * has no official existence, and my source at AT&T did not send a copy.
  21.  * The current SVR2 man page reflects the actual behavor of this getopt.
  22.  * However, I am not about to post a copy of anything licensed by AT&T.
  23.  */
  24.  
  25. #include <string.h>
  26.  
  27. #define NULL    0
  28. #define EOF     (-1)
  29. #define ERR(s, c)       if(opterr){\
  30.         extern int write();\
  31.         char errbuf[2];\
  32.         errbuf[0] = c; errbuf[1] = '\n';\
  33.         (void) write(2, argv[0], (unsigned)strlen(argv[0]));\
  34.         (void) write(2, s, (unsigned)strlen(s));\
  35.         (void) write(2, errbuf, 2);}
  36.  
  37. int     opterr = 1;
  38. int     optind = 1;
  39. int     optopt;
  40. char    *optarg;
  41.  
  42. int getopt(int argc, char **argv, char *opts) {
  43.         static int sp = 1;
  44.         register int c;
  45.         register char *cp;
  46.  
  47.         if(sp == 1)
  48.                 if(optind >= argc ||
  49.                    argv[optind][0] != '-' || argv[optind][1] == '\0')
  50.                         return(EOF);
  51.                 else if(strcmp(argv[optind], "--") == NULL) {
  52.                         optind++;
  53.                         return(EOF);
  54.                 }
  55.         optopt = c = argv[optind][sp];
  56.         if(c == ':' || (cp=strchr(opts, c)) == NULL) {
  57.                 ERR(": illegal option -- ", c);
  58.                 if(argv[optind][++sp] == '\0') {
  59.                         optind++;
  60.                         sp = 1;
  61.                 }
  62.                 return('?');
  63.         }
  64.         if(*++cp == ':') {
  65.                 if(argv[optind][sp+1] != '\0')
  66.                         optarg = &argv[optind++][sp+1];
  67.                 else if(++optind >= argc) {
  68.                         ERR(": option requires an argument -- ", c);
  69.                         sp = 1;
  70.                         return('?');
  71.                 } else
  72.                         optarg = argv[optind++];
  73.                 sp = 1;
  74.         } else {
  75.                 if(argv[optind][++sp] == '\0') {
  76.                         sp = 1;
  77.                         optind++;
  78.                 }
  79.                 optarg = NULL;
  80.         }
  81.         return(c);
  82. }
  83.